projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
59135ed
)
(create_process): Don't complain about error from TIOCSETD.
author
Richard M. Stallman
<rms@gnu.org>
Sat, 21 May 1994 07:28:57 +0000
(07:28 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sat, 21 May 1994 07:28:57 +0000
(07:28 +0000)
src/process.c
patch
|
blob
|
history
diff --git
a/src/process.c
b/src/process.c
index 44a7d843a299b55c63cb4bc3526e1e1c6683f3f5..2e5631ade757b6857f67e553314ed0d4fa02971a 100644
(file)
--- a/
src/process.c
+++ b/
src/process.c
@@
-1318,8
+1318,7
@@
create_process (process, new_argv, current_dir)
{
/* Use new line discipline. */
int ldisc = NTTYDISC;
- if (ioctl (xforkin, TIOCSETD, &ldisc) < 0)
- write (1, "create_process/TIOCSETD failed\n", 31);
+ ioctl (xforkin, TIOCSETD, &ldisc);
}
#endif
#endif